home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / src / buildzsh < prev    next >
Encoding:
Text File  |  1994-04-07  |  436 b   |  31 lines

  1. #! /bin/sh
  2.  
  3. VERSION=`sed 's/.*"\(.*\)".*/\1/' version.h`
  4.  
  5. if test "Z$1" != "Zhelp"
  6. then
  7. cat <<foo
  8. #
  9. # buildzsh -- zsh configuration tool
  10. #
  11. # try "buildzsh help" for more information
  12. #
  13.  
  14. Building $VERSION
  15. foo
  16. fi
  17.  
  18. # the real scripts are at src/config/
  19.  
  20. PATH=config:$PWD:$PATH;export PATH
  21.  
  22. . ./config/bz.init
  23. . ./config/bz.argh
  24. . ./config/bz.check
  25. . ./config/bz.hosttype
  26. . ./config/bz.hs
  27. . ./config/bz.Makefile
  28. . ./config/bz.finale
  29.  
  30. exit 0
  31.